home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 May / PCWorld_2005-05_cd.bin / software / vyzkuste / exeem / eXeem.Lite.0.23.Beta1.exe / {app} / skin / defs.lua < prev    next >
Text File  |  2005-01-23  |  3KB  |  150 lines

  1.  
  2. -- progress bars in list views
  3.  
  4. list_progress_bg = "bar_bg.png"
  5. list_progress_bg_start = "bar_bg_start.png"
  6. list_progress_bg_end = "bar_bg_end.png"
  7. list_progress_bar = "bar.png"
  8. list_progress_bar_start = "bar_start.png"
  9. list_progress_bar_end = "bar_end.png"
  10. list_progress_text_color = {14, 66, 121}
  11.  
  12. list_icon0 = "icons/games.png"
  13. list_icon1 = "icons/apps.png"
  14. list_icon2 = "icons/movies.png"
  15. list_icon3 = "icons/tv.png"
  16. list_icon4 = "icons/anime.png"
  17. list_icon5 = "icons/music.png"
  18. list_icon6 = "icons/adult.png"
  19. list_icon7 = "icons/other.png"
  20.  
  21. -- static text
  22.  
  23. static_text_color = {0, 0, 0}
  24. static_text_color_disabled = {100, 100, 100}
  25.  
  26. -- background gradient
  27.  
  28. bg_top_color = {212, 208, 200}
  29. bg_bottom_color = {212, 208, 200}
  30.  
  31. -- tab view
  32. tab_client =
  33. {
  34.     "tab-area-ul.png",
  35.     "tab-area-u.png",
  36.     "tab-area-l.png",
  37.     "tab-area-ll.png",
  38.     "tab-area-ur.png",
  39.     "tab-area-r.png",
  40.     "tab-area-lr.png",
  41.     "tab-area-b.png",
  42. }
  43.  
  44. tab_client_color = {212, 208, 200}
  45. tab_font_color = {0, 0, 0}
  46. tab_active_font_color = {0, 0, 0}
  47.  
  48. tab_left = "tab-left.png"
  49. tab_active_left = "tab-active-left.png"
  50. tab_center = "tab-center.png"
  51. tab_active_center = "tab-active-center.png"
  52. tab_right = "tab-right.png"
  53. tab_active_right = "tab-active-right.png"
  54.  
  55. tab_icon0 = "icons/home.png"
  56. tab_icon1 = "icons/transfers.png"
  57. tab_icon2 = "icons/new.png"
  58. tab_icon3 = "icons/search.png"
  59. tab_icon4 = "icons/eventlog.png"
  60.  
  61.  
  62.  
  63. -- button gadgets
  64.  
  65. button =
  66. {
  67.     "button-ul.png",
  68.     "button-u.png",
  69.     "button-l.png",
  70.     "button-ll.png",
  71.     "button-ur.png",
  72.     "button-r.png",
  73.     "button-lr.png",
  74.     "button-b.png",
  75. }
  76. button_bg = {212, 208, 200}
  77. button_text_color = {0, 0, 0}
  78.  
  79. button_pressed =
  80. {
  81.     "pressed-button-ul.png",
  82.     "pressed-button-u.png",
  83.     "pressed-button-l.png",
  84.     "pressed-button-ll.png",
  85.     "pressed-button-ur.png",
  86.     "pressed-button-r.png",
  87.     "pressed-button-lr.png",
  88.     "pressed-button-b.png",
  89. }
  90. button_pressed_bg = {229, 225, 218}
  91. button_pressed_text_color = {54, 106, 179}
  92.  
  93. button_disabled =
  94. {
  95.     "disabled-button-ul.png",
  96.     "disabled-button-u.png",
  97.     "disabled-button-l.png",
  98.     "disabled-button-ll.png",
  99.     "disabled-button-ur.png",
  100.     "disabled-button-r.png",
  101.     "disabled-button-lr.png",
  102.     "disabled-button-b.png",
  103. }
  104. button_disabled_bg = {212, 208, 200}
  105. button_disabled_text_color = {100, 100, 100}
  106.  
  107. -- checkboxes
  108.  
  109. checkbox_nocheck = "check_box_normal.png"
  110. checkbox_check = "check_box_checked.png"
  111. checkbox_text_color = {0, 0, 0}
  112. checkbox_disabled_nocheck = "check_box_normal_disabled.png"
  113. checkbox_disabled_check = "check_box_checked_disabled.png"
  114. checkbox_disabled_text_color = {100, 100, 100}
  115.  
  116. -- boxes
  117.  
  118. static_box =
  119. {
  120.     "box-border-ul.png",
  121.     "box-border-u.png",
  122.     "box-border-l.png",
  123.     "box-border-ll.png",
  124.     "box-border-ur.png",
  125.     "box-border-r.png",
  126.     "box-border-lr.png",
  127.     "box-border-b.png",
  128. }
  129. static_box_text_color = {0, 0, 0}
  130.  
  131. -- progress bars
  132.  
  133. progress_bg = "bar_bg.png"
  134. progress_bg_start = "bar_bg_start.png"
  135. progress_bg_end = "bar_bg_end.png"
  136. progress_bar = "bar.png"
  137. progress_bar_start = "bar_start.png"
  138. progress_bar_end = "bar_end.png"
  139.  
  140. -- static text
  141.  
  142. static_text_color = {0, 0, 0}
  143. static_text_color_disabled = {100, 100, 100}
  144.  
  145. -- background gradient
  146.  
  147. bg_top_color = {212, 208, 200}
  148. bg_bottom_color = {212, 208, 200}
  149.  
  150.